Install and setup mongodb on arch linux
How to Install mongodb on Arch-based Linux Distributions(Manjaro)
$ yay -S mongodb-bin
$ yay -S mongosh-bin
$ yay -S mongodb-compass
Now, run the mongodb service by using systemctl command.
$ sudo systemctl start mongodb
$ sudo systemctl status mongodb
$ sudo systemctl enable mongodb
// $ mongo --version
Uninstallation of MongoDB
To uninstall MongoDB and all of its config files run:
$ sudo pacman -Rns mongodb-bin
https://www.geeksforgeeks.org/how-to-install-mongodb-on-arch-based-linux-distributionsmanjaro/
Category: Linux | Comments: 0